home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1995 January
/
macformat-020.iso
/
Shareware City
/
Developers
/
Think C dcmd 1.0.1 ƒ
/
Think Put Lib source
/
PutText.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1994-06-12
|
120 b
|
10 lines
|
[
TEXT/KAHL
]
void PutChar(char c);
void PutText(const char* s, int len )
{
int i;
for ( i=0; i<len; i++ )
PutChar( s[i] );
}